You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

@layerzerolabs/evm-sdks-core

Package Overview
Dependencies
Maintainers
0
Versions
264
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@layerzerolabs/evm-sdks-core

3.0.115
latest
npmnpm
Version published
Weekly downloads
1.9K
-33.51%
Maintainers
0
Weekly downloads
 
Created
Source

@layerzerolabs/evm-sdks-core

The EVM SDKs Core package provides essential utilities and tools for interacting with EVM-compatible blockchains. It includes functions for contract error parsing.

Features

  • Error Parsing: Parse contract errors and convert them into easy-to-read and structured data.

Installation

To install the EVM SDKs Core package, you can use npm or yarn:

npm install @layerzerolabs/evm-sdks-core

or

yarn add @layerzerolabs/evm-sdks-core

Usage

Error Parsing

import { LayerZeroErrorParser, Abi } from "@layerzerolabs/evm-sdks-core";
import { EndpointV2__factory } from "@layerzerolabs/lz-evm-sdk-v2";

const abi: Abi = Endpoint__factory.createInterface();
const parser = new LayerZeroErrorParser(abi);

const errorData = "..."; // Error data string
const parsedError = parser.parse(errorData);

if (parsedError) {
  console.log(`Error: ${parsedError.message}`);
}

FAQs

Package last updated on 22 Jul 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts